home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / knowhow4 / dcontkit.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-10  |  498 b   |  20 lines

  1. #ifndef __DIACOM_CONTEXT_KIT
  2. #define __DIACOM_CONTEXT_KIT
  3.  
  4. #include "contkit.h"
  5.  
  6. class DiacomContextKit : public ContextKit
  7.     {
  8.     public:
  9.         DiacomContextKit(char* HOT = NULL,
  10.            rect STATUSPOS = rect(0, 24, 79, 25),
  11.            int STATUSTYPE = 0, char** STATUSSTRINGS = NULL,
  12.            int* STATUSLIST = NULL)
  13.         :ContextKit(HOT, STATUSPOS, STATUSTYPE, STATUSSTRINGS,
  14.            STATUSLIST)
  15.            {}
  16.  
  17.     virtual void exe(int act = 0);
  18.     };
  19.  
  20. #endif __DIACOM_CONTEXT_KIT